home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fade / fade1.frm < prev    next >
Text File  |  1994-12-10  |  2KB  |  80 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Refer to Form Load coding for ""how to"" instructions."
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1080
  6.    ClientTop       =   1485
  7.    ClientWidth     =   7365
  8.    Height          =   4425
  9.    Left            =   1020
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   4020
  12.    ScaleWidth      =   7365
  13.    Top             =   1140
  14.    Width           =   7485
  15.    Begin Label Label2 
  16.       Alignment       =   2  'Center
  17.       BackColor       =   &H00FFFFFF&
  18.       BackStyle       =   0  'Transparent
  19.       Caption         =   "JWPC 1995, inc."
  20.       FontBold        =   -1  'True
  21.       FontItalic      =   0   'False
  22.       FontName        =   "Times New Roman"
  23.       FontSize        =   54
  24.       FontStrikethru  =   0   'False
  25.       FontUnderline   =   0   'False
  26.       ForeColor       =   &H00FFFFFF&
  27.       Height          =   2325
  28.       Left            =   240
  29.       TabIndex        =   1
  30.       Top             =   1170
  31.       Width           =   7095
  32.    End
  33.    Begin Label Label1 
  34.       BackStyle       =   0  'Transparent
  35.       Caption         =   "Resize me, too!"
  36.       ForeColor       =   &H00FFFFFF&
  37.       Height          =   465
  38.       Left            =   120
  39.       TabIndex        =   0
  40.       Top             =   120
  41.       Width           =   2295
  42.    End
  43. End
  44. Sub Form_Load ()
  45. ' Copyright (c) 1994 Jwpc 1995, inc.
  46. '
  47. ' Adress:
  48. '
  49. '      JwpcEMail @ aol.com
  50. '   --or--
  51. '      JwpcNow @ aol.com
  52. '
  53. ' JwpcEMail is only for EMail
  54. ' Copy as you please!
  55. '
  56. ' How to:
  57. Rem Cannot copy this file as you please, just FADE.BAS
  58. '
  59. '
  60. ' Goto FILE and then ADD FILE, and select the FADE.BAS file.
  61. '
  62. ' Then, to display it, go to the Form_Paint sub area.
  63. '
  64. ' Type:
  65. '       FadeForm Me
  66. ' Then, it will appear.
  67. 'The FADE.BAS code has examples of how to change it.
  68. ' please refer there next...
  69. End Sub
  70.  
  71. Sub Form_Paint ()
  72. fadeform Me
  73. End Sub
  74.  
  75. Sub Form_Resize ()
  76. fadeform Me
  77.  
  78. End Sub
  79.  
  80.